Hi there! 我是嘟嘟~受到前輩啟發,想說可以紀錄一下自己練習的過程,小女子為程式超超新手,此系列非教學文,僅為個人解題筆記,可能有錯誤或未補充詳盡之處,歡迎前輩們不吝指教!也歡迎正在自學的夥伴一起討論學習~
A single line of text denoting inputString (the variable whose contents must be printed).
輸入單行字串,作為要印出的變量
Print Hello, World. on the first line, and the contents of inputString on the second line.
第一行印出Hello, World,第二行印出輸入的字串
Welcome to 30 Days of Code!
Hello, World.
Welcome to 30 Days of Code!
input_string = input() #宣告名為input_string的變數
print('Hello, World.')
print(input_string)
參考print()
的小補充